home *** CD-ROM | disk | FTP | other *** search
/ IRIX 5.3 for Indy R4400 / IRIX 5.3 for Indy R4400 175MHz.img / dist / eoe2.idb / usr / src / rcs / DCsource.Z / DCsource / decimal.h < prev    next >
C/C++ Source or Header  |  1995-02-28  |  3KB  |  96 lines

  1. /* 
  2.  * Header file for decimal.c (arbitrary precision decimal arithmetic)
  3.  *
  4.  * Copyright (C) 1984 Free Software Foundation, Inc.
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2, or (at your option)
  9.  * any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, you can either send email to this
  18.  * program's author (see below) or write to: The Free Software Foundation,
  19.  * Inc.; 675 Mass Ave. Cambridge, MA 02139, USA.
  20.  */
  21.  
  22. #ifndef sgi
  23. /* Autoconf stuff */
  24. #ifndef HAVE_BCOPY
  25. #undef bcopy
  26. #define bcopy(s2, s1, n) memcpy (s1, s2, n)
  27. #endif
  28.  
  29. #ifndef HAVE_BZERO
  30. #undef bzero
  31. #define bzero(b, l) memset (b, 0, l)
  32. #endif
  33. #endif
  34.  
  35. /* Define the radix to use by default, and for representing the
  36.    numbers internally.  This does not need to be decimal; that is just
  37.    the default for it.  */
  38.  
  39. /* Currently, this is required to be even for this program to work. */
  40.  
  41. #ifndef RADIX
  42. #define RADIX 10
  43. #endif
  44.  
  45. /* The user must define the external function `decimal_error'
  46.    which is called with two arguments to report errors in this package.
  47.    The two arguments may be passed to `printf' to print a message. */
  48.  
  49. /* Structure that represents a decimal number */
  50.  
  51. struct decimal
  52. {
  53.   unsigned int sign: 1;        /* One for negative number */
  54.                 /* The sign should always be zero for the number 0 */
  55.   int after: 15;        /* number of fraction digits */
  56.   unsigned short before;    /* number of non-fraction digits */
  57.   unsigned short refcnt;    /* number of pointers to this number */
  58.                 /* (used by calling program) */
  59.   char contents[1];        /* the digits themselves, least significant first. */
  60.                 /* digits are just numbers 0 .. RADIX-1 */
  61. };
  62.  
  63. /* There may never be leading nonfraction zeros or trailing fraction
  64.    zeros in a number.  They must be removed by all the arithmetic
  65.    functions.  Therefore, the number zero always has no digits stored. */
  66.  
  67. typedef struct decimal *decimal;
  68.  
  69. /* Decimal numbers are always passed around as pointers.
  70.    All the external entries in this file allocate new numbers
  71.    using `malloc' to store values in.
  72.    They never modify their arguments or any existing numbers. */
  73.  
  74. /* Return the total number of digits stored in the number `b' */
  75. #define LENGTH(b) ((b)->before + (b)->after)
  76.  
  77. /* Some constant decimal numbers */
  78.  
  79.  
  80. #define DECIMAL_ZERO &decimal_zero
  81.  
  82.  
  83. #define DECIMAL_ONE &decimal_one
  84.  
  85. #define DECIMAL_HALF &decimal_half
  86.  
  87. decimal decimal_add (), decimal_sub (), decimal_mul (), decimal_div ();
  88. decimal decimal_mul_dc (), decimal_mul_rounded (), decimal_rem ();
  89. decimal decimal_round_digits ();
  90. decimal make_decimal (), decimal_copy (), decimal_parse ();
  91. decimal decimal_sqrt (), decimal_expt ();
  92.  
  93. void decimal_print ();
  94.  
  95. /* End of decimal.h */
  96.